home *** CD-ROM | disk | FTP | other *** search
- -- card: 7405 from stack: in.a
- -- bmap block id: 0
- -- flags: 0000
- -- background id: 2689
- -- name:
-
-
- -- part contents for background part 24
- ----- text -----
- convert to lower case
-
- -- part contents for background part 26
- ----- text -----
- on convertToLower
- ask "convert what to lower case?" with "card field 1"
- put selection into temp
- repeat with x=1 to the length of temp
- put the charToNum of char x of temp into newtemp
- if newtemp >=56 and newtemp <=90 then
- put newtemp+32 into newtemp
- put the numToChar of newtemp into char x of temp
- end if
- end repeat
- put temp into selection
-
- end convertToLower
-
-
- -- part contents for background part 39
- ----- text -----
- procedure